home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM
- REM un-install script for WSC4VB (5/31/99).
- REM
- if (%windir%) == () goto WIN31
-
- if not exist %windir%\WSC16.DLL goto TEST2
- echo Delete %windir%\WSC16.DLL ?
- pause
- del %windir%\WSC16.DLL
-
- :TEST2
- if not exist %windir%\WSC32.DLL goto DONE
- echo Delete %windir%\WSC32.DLL ?
- pause
- del %windir%\WSC32.DLL
- goto DONE
-
- :WIN31
-
- if not exist C:\WINDOWS\WSC16.DLL goto TEST4
- echo Delete C:\WINDOWS\WSC16.DLL ?
- pause
- del C:\WINDOWS\WSC16.DLL
-
- :TEST4
- if not exist C:\WINDOWS\WSC32.DLL goto DONE
- echo Delete C:\WINDOWS\WSC32.DLL ?
- pause
- del C:\WINDOWS\WSC32.DLL
-
- :DONE
-
-
-